Xbasic

PRINT_FORM Function

Syntax

C print_form(C form_name [,C filter [,C order [,* options ]]])

Arguments

form_name

The name of a saved form.

filter

Optional. Default = ".T." (All records). A character filter expression that evaluates to a logical value and selects records from the table.

order

Optional. Default = record order. A character order expression that sorts selected records.

options

*

Description

PRINT_FORM() creates the selected form and then displays the Print dialog box.

Example

PRINT_FORM("Invoice", "Invoice_Number > " + quote("000001"), "Date")

Limitations

Desktop applications only.

See Also